@media screen and (max-width: 1080px) {
  

    /***** Structure *****/
    #videoArsen {
        position: relative;
    }
    #videoArsen {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    #videoArsen {
        padding: 30px;
    }
    #videoArsen {
        background-color: #000;
    }

    /***** Video *****/
    #videoArsen video {
        position: relative;
    }
    #videoArsen video {
        width: 100%;
        height: auto;
    }

    /***** Details *****/
    #videoArsenDetails {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 20px;
    }
    #videoArsenDetails h4 {
        font-family: 'content-font';
        font-size: 10px;
        text-transform: uppercase;
        text-shadow: 0 0 5px #00000050;
        letter-spacing: 2px;
        color: #fff;
    }
    #videoArsenDetails div {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    #videoArsenDetails div h2 {
        font-family: 'title-font';
        font-size: 65px;
        font-weight: 400;
        text-transform: uppercase;
        text-shadow: 0 0 5px #00000050;
        line-height: 0.75em;
        color: #fff;
    }
    #videoArsenDetails div h2 span {
        color: var(--secondary);
    }
    #videoArsenDetails p {
        max-width: 90%;
    }
    #videoArsenDetails p {
        font-family: 'content-font';
        font-size: 14px;
        text-shadow: 0 0 5px #00000050;
        line-height: 24px;
        color: #fff;
    }
    #videoArsenDetails p b {
        font-family: 'bold-font';
    }

    /***** Gradient *****/
    #videoArsenGradient {
        display: none;
    }

    /***** Image *****/
    #videoArsen img {
        position: absolute;
        right: -50%;
        bottom: -30%;
    }
    #videoArsen img {
        width: auto;
        height: 100%;
    }
    #videoArsen img {
        object-fit: cover;
        object-position: center;
    }
    #videoArsen img {
        opacity: 0.35;
    }

    /***** z-index *****/
    #videoArsen img {
        z-index: 1;
    }
    #videoArsenGradient {
        z-index: 2;
    }
    #videoArsen video {
        z-index: 3;
    }
    #videoArsenDetails {
        z-index: 4;
    }
   

}